From: Roberto Vargas Date: Mon, 12 Feb 2018 12:36:17 +0000 (+0000) Subject: Fix MISRA rule 8.3 X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22/%22https:/collectd.org/%22?a=commitdiff_plain;h=0fbb7a4afe937eefa102a268f78ba9cc579ab23f;p=project%2Fbcm63xx%2Fatf.git Fix MISRA rule 8.3 Rule 8.3: All declarations of an object or function shall use the same names and type qualifiers. Fixed for: make DEBUG=1 PLAT=juno SPD=tspd CSS_USE_SCMI_SDS_DRIVER=1 all Change-Id: Id9dcc6238b39fac6046abc28141e3ef5e7aa998d Signed-off-by: Roberto Vargas --- diff --git a/plat/arm/css/drivers/sds/sds.h b/plat/arm/css/drivers/sds/sds.h index ff3787da..4aef0df9 100644 --- a/plat/arm/css/drivers/sds/sds.h +++ b/plat/arm/css/drivers/sds/sds.h @@ -80,7 +80,7 @@ typedef enum { } sds_access_mode_t; int sds_init(void); -int sds_struct_exists(uint32_t structure_id); +int sds_struct_exists(unsigned int structure_id); int sds_struct_read(uint32_t structure_id, unsigned int fld_off, void *data, size_t size, sds_access_mode_t mode); int sds_struct_write(uint32_t structure_id, unsigned int fld_off, void *data,